home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / hsbd110 / usage.txt < prev   
Encoding:
Text File  |  1999-02-21  |  3.4 KB  |  140 lines

  1. The summary of the transitions effects :
  2.  
  3. - Bigger : Display image from small to big 
  4.      Direction : Center, Up, Down, Left, Right, Up_Left, Up_Right,
  5.                  Down_Left, Down_Right
  6.      Size : No
  7.  
  8. - BMove : Moving image
  9.      Direction : Up, Down, Left, Right
  10.      Size : No
  11.         
  12. - CloseEffect : Close image from two side
  13.      Direction : Vertical, Horizontal, Vertical_Out, Horizontal_Out
  14.      Size : No
  15.  
  16. - CrossUpDown : Cross image Up to Down
  17.      Direction : No
  18.      Size : No
  19.  
  20. - CrossLeftRight : Cross image Left to Right
  21.      Direction : No
  22.      Size : No
  23.  
  24. - Fall : Rain fall Effect
  25.      Direction : Up, Down, Left, Right
  26.      Size : No
  27.  
  28. - Line2Pass : Line display, two pass
  29.      Direction : Up, Down, Left, Right
  30.      Size : No
  31.  
  32. - LineCross : Line cross from two side
  33.      Direction : Up_Down, Left_Right
  34.      Size : Yes
  35.  
  36. - LinePass : Line pass from one side ( New )
  37.      Direction : Up, Down, Left, Right
  38.      Size : No
  39.  
  40. - LinePass2 : Line pass from two side ( New )
  41.      Direction : Up, Down, Left, Right
  42.      Size : No
  43.  
  44. - RandomBox : Random display image with small box
  45.      Direction : No
  46.      Size : Yes
  47.  
  48. - RandomLine : Random display image with line
  49.      Direction : Vertical, Horizontal
  50.      Size : No
  51.  
  52. - Rectangle : Display image with rectangle
  53.      Direction : Center, Up_Left, Up_Right, Down_Left, Down_Right
  54.      Size : No
  55.  
  56. - Roll : Roll image
  57.      Direction : Up, Down, Left, Right
  58.      Size : No
  59.  
  60. - ShowPage : Showing the current image
  61.      Direction : No
  62.      Size : No
  63.  
  64. - Split : Line split pass ( New )
  65.      Direction : Vertical, Horizontal
  66.      Size : No
  67.  
  68. - Stretch : Stretch image ( New )
  69.      Direction : Up, Down, Left, Right
  70.      Size : No
  71.  
  72. - TwisterBox : Image display with twister (box) style
  73.      Direction : In, Out
  74.      Size : Yes
  75.  
  76. - TwisterCircle : Image display with twister (circle) style
  77.      Direction : In, Out
  78.      Size : Yes
  79.  
  80. - TwisterCircleAntiC : TwisterCircle with Anti Clock Wise direction
  81.      Direction : In, Out
  82.      Size : Yes
  83.  
  84. - VenetialBlind : Venetial Blind
  85.      Direction : Up, Down, Left, Right
  86.      Size : Yes
  87.  
  88. Direction value : ( Direct )
  89. CENTER     = 0
  90. UP         = 1
  91. DOWN       = 2
  92. LEFT       = 3
  93. RIGHT      = 4
  94. UP_LEFT    = 5
  95. UP_RIGHT   = 6
  96. DOWN_LEFT  = 7
  97. DOWN_RIGHT = 8
  98. OUT        = 0
  99. IN         = 1
  100. VER        = 0 ( Vertical )
  101. HOR        = 1 ( Horizontal )
  102. VER_OUT    = 2 ( Vertical Out )
  103. HOR_OUT    = 3 ( Horizontal Out )
  104. UP_DOWN    = 0
  105. LEFT_RIGHT = 1
  106.  
  107. Size : ( Size )
  108.      Size is the size of lines or box to be use when displaying 
  109. image.
  110.  
  111. Ohter Important Properties :
  112. AutoResize : True or False
  113.              The Control will automaticaly resize to the size of image
  114.  
  115. Delay      : Integer
  116.              Time delay in second  
  117.  
  118. Picture    : Normal picture format same as picture box
  119.  
  120. Visible    : True or False
  121.              Control is visible or hidden
  122.  
  123. Other Method :
  124. Cls           : Clear the Image in control
  125. ShowAbout     : Display the About Box
  126.  
  127.  
  128. Example :
  129. Loading pictures :
  130. 1. In design time, just set the picture properties.
  131. 2. In run time, use the LoadPicture statement.
  132.    HSBitmapDisplayer1.Picture = LoadPicture("C:\abc\xyz.bmp")
  133.  
  134. Display pictures :
  135. Example :
  136.         HSBitmapDisplayer1.Direct = 1 ( The Direction )
  137.         HSBitmapDisplayer1.Delay = 2  ( Set the Delay )
  138.         HSBitmapDisplayer1.Bigger     ( Call Effect )
  139.      
  140.